/* [name of file pkg. directory; Unix error string] mkdir call failed when creating file package directory */
"IO_CreateFilePackage" = "Unable to create File Package: %s (error: %s)";
/* [directory name; Unix error string] was unable to access the specified directory */
"IO_InvalidPath" = "Unable to access directory: %s (problem: %s)";
/* [document path & name; Unix error string] was unable to access the specified document */
"IO_InvalidDocument" = "Unable to access document: %s (problem: %s)";
/* [objectStore file name; type of object that wasn't found ("document object" or "stack object")] the objectStore couldn't retrieve a standard object (document in .hcmain file, or stack in .hcpages file). */
"IO_DamagedDocument" = "Damaged Document: file `%s' is missing some vital information (%s).";
/* [objectStore file name] the objectStore didn't store a standard object (document in .hcmain file, or stack in .hcpages file) with the correct constant ID number */
"IO_StrangeObjStore1" = "Unexpected Error: Incorrect internal ID number for standard object in file %s.";
/* [full pathname of file] flags passed to ObjectStore indicated creating a read-only file: no good (bad flags -- fix the program) */
"IO_CreateReadOnly" = "Unexpeced Error: Attempt made to create a Read-Only file: %s";
/* Attempt was made to create a new document, or add a new stack or a new type of resource while running in Demo (unregistered) mode. */
"IO_CantCreateInDemoMode" = "I'm sorry, but files cannot be created in Demo Mode. Please register HyperCube first.";
/* [full pathname of file; Unix error string] couldn't create the specified file */
"IO_CreateFile" = "Unable to create file %s (problem: %s)";
/* [full pathname of directory; Unix error string] couldn't create the specified directory */
"IO_CreateDir" = "Unable to create directory %s (problem: %s)";
/* [full pathname of file; Unix error string] couldn't reopen file that was just created and closed */
"IO_OpenCreatedFile" = "Unexpected Error: Unable to open newly-created file: %s (problem: %s)";
/* [full pathname of file] file is too short to contain a complete header */
"IO_NoHeader" = "Couldn't open file %s (header invalid)";
/* [full pathname of file] file does not begin with the magic number indicating an ObjectStore file */
"IO_BadMagicNumber" = "Couldn't open file %s (file is corrupted or is not an ObjectStore file)";
/* [full pathname of file; version number of file] file was created using a newer version of the ObjectStore format than the current software supports */
"IO_WrongFileVersion" = "Couldn't open file %s (file is an incompatible version: %d)";
/* [full pathname of file; uid # of user that has file open; pid of process that opened file] file's header shows that it is already open */
"IO_FileInUse" = "Can't access file %s – it is already open by user # %d, process %d.";
/* [full pathname of file] an attempt was made to enter changes in a ReadOnly file. */
"IO_StrictReadOnly" = "File is Strictly Read Only – No Changes Allowed (%s)";
/* [full pathname of file] an attempt was made to enter changes in a ReadOnly file. */
"IO_ReadOnly" = "File is Read Only – Changes may not be saved (%s)";
/* [full pathname of file; actual size of Unix file; filesize from header] the filesize recorded in the header of an ObjectStore file does not agree with the "actual" size in the Unix filesystem */
"IO_BadFileSize" = "Couldn't open file %s (file size [%d] is different than recorded [%d])";
/* [full pathname of file] an attempt was made to create text file for read/write or write. Either directory not write accessable to user or full path does not exist. */
"IO_TextCreateWrite" = "Unable to create text file %s for writing.";
/* [full pathname of file] an attempt was made to open text file for reading. File does not exist, or directory not read accessable to user. */
"IO_TextOpenRead" = "Unable to open text file %s for reading.";
/* [full pathname of file] an attempt was made to open a text file that is currently open. */
"IO_TextFileCurrentlyOpen" = "Text file %s currently open.";
/* [full pathname of file] an attempt was made to read, write or close a text file that is not currently open. */
"IO_TextFileNotOpen" = "Text file %s not open.";
/* [full pathname of file] an attempt was made to write to a text file that was opened as read only. */